-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
46 lines (42 loc) · 1.15 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import sys
long_description = ''
if 'sdist' in sys.argv:
with open('README.rst') as f:
long_description = f.read()
setup(
name='slider',
version='0.8.2',
description='Utilities for working with osu! files and data',
author='Joe Jevnik',
author_email='[email protected]',
packages=find_packages(),
long_description=long_description,
license='LGPLv3+',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)', # noqa
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Games/Entertainment',
],
url='https://github.com/llllllllll/slider',
install_requires=[
'numpy',
'requests',
'scipy',
],
extras_require={
'dev': [
'flake8==3.7.9',
'mccabe==0.6.1',
'pyflakes==2.1.1',
'pytest==5.4.1',
],
'cli': [
'click',
],
},
)