-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 951 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
from setuptools import setup
import os.path as p
here = p.abspath(p.dirname(__file__))
with open(p.join(here, 'README.md')) as f:
long_description = f.read()
setup(
name='neuroswarms',
version='1.0.1',
description='NeuroSwarms: A neural swarming controller model',
long_description=long_description,
url='https://github.com/jdmonaco/neuroswarms',
author='Joseph Monaco',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 7 - Inactive',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Scientific/Engineering :: Visualization',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8'
],
packages=['neuroswarms'],
)