-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (19 loc) · 681 Bytes
/
setup.py
File metadata and controls
26 lines (19 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup, find_packages
from os import path, environ
import versioneer
cur_dir = path.abspath(path.dirname(__file__))
with open(path.join(cur_dir, 'requirements.txt'), 'r') as f:
requirements = f.read().split()
setup(
name='pySuperfish',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(),
package_dir={'superfish':'superfish'},
url='https://github.com/ChristopherMayes/PySuperfish',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=requirements,
include_package_data=True,
python_requires='>=3.7'
)