-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 890 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 890 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
from setuptools import setup, find_packages
setup(
name='insist-pista',
version='2.0.0',
description="Python Image Simulation and Testing Application",
url='https://github.com/Jack3690/INSIST',
author='Avinash CK',
author_email='avinashck90@gmail.com',
license='BSD 2-clause',
package_dir={'': 'src'},
packages=find_packages(where='src'),
include_package_data=True,
package_data={'': ['pista/data/*']},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)