-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
28 lines (25 loc) · 975 Bytes
/
setup.py
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
27
28
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
with open('requirements.txt', 'r') as f:
requirements = f.read().splitlines()
requirements = [l for l in requirements if not l.startswith('#')]
setuptools.setup(
name='fanc-fly',
version='3.2.1',
author='Jasper Phelps',
author_email='[email protected]',
description='Tools for the Female Adult Nerve Cord Drosophila EM dataset',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/htem/FANC_auto_recon',
packages=setuptools.find_packages(),
package_data={'fanc.transforms': ['transform_parameters/*.txt']},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
install_requires=requirements
)