-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 764 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name="PullentiPython",
version="0.1",
author="Sergei Sharkov",
author_email="serezhasharkov2003@gmail.com",
description="Python implementation of PullentiPython.",
url='https://github.com/ssharkov03/pullenti', # Provide either the link to your github or to your website
download_url='https://github.com/ssharkov03/pullenti/archive/refs/tags/0.1.tar.gz', # I explain this later on
packages=find_packages(),
include_package_data=True,
package_data={
'pullenti': [
'**/*.dat',
'**/*.csv',
'**/*.txt',
'**/*.jpg',
'**/*.png'
]
},
python_requires=">=3.8"
)