-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (52 loc) · 2.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
"""Setup script."""
import os
from setuptools import setup, find_packages
# Get the current version number from inside the module
with open(os.path.join('convolutional_ar', 'version.py')) as version_file:
exec(version_file.read())
# Load the long description from the README
with open('README.md') as readme_file:
long_description = readme_file.read()
# Load the required dependencies from the requirements file
with open("requirements.txt") as requirements_file:
install_requires = requirements_file.read().splitlines()
setup(
name = 'convolutional_ar',
version = __version__,
description = 'Convolutional autoregressive models.',
long_description = long_description,
python_requires = '>=3.6',
author = 'The Voytek Lab',
author_email = 'voyteklab@gmail.com',
maintainer = 'Ryan Hammonds',
maintainer_email = 'rphammonds@ucsd.edu',
url = 'https://github.com/voytekresearch/convolutional_ar',
packages = find_packages(),
license = 'Apache License, 2.0',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
],
platforms = 'any',
project_urls = {},
download_url = 'https://github.com/voytekresearch/convolutional_ar/releases',
keywords = ['convolutional', 'autoregressive', 'image', 'texture'],
install_requires = install_requires,
tests_require = ['pytest', 'pytest-cov'],
extras_require = {
'tests' : ['pytest', 'pytest-cov'],
'all' : ['pytest', 'pytest-cov']
}
)