-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
38 lines (32 loc) · 1.06 KB
/
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
29
30
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('pynta/__init__.py', 'r') as f:
version_line = f.readline()
version = version_line.split('=')[1].strip().replace("'", "")
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='PyNTA',
version=version,
description='Python Nanoparticle Tracking Analysis',
packages=find_packages(),
url='https://github.com/nanoepics/pynta',
license='GPLv3',
author='Aquiles Carattino',
author_email='[email protected]',
classifiers=[
'Intended Audience :: End Users/Desktop',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
],
include_package_data=True,
install_requires=['pyqt5', 'numpy', 'pyqtgraph', 'pint', 'h5py', 'trackpy', 'pandas', 'pyyaml',
'pyzmq', 'numba'],
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"pynta=pynta.__main__:main"
]
}
)