-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) 路 760 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (25 loc) 路 760 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
25
26
27
28
29
30
from setuptools import setup
# from pip.req import parse_requirements
# reqs = parse_requirements('requirements.txt', session=False)
# reqs = [str(ir.req) for ir in reqs]
#
def main():
setup(
name='spiget',
version='0.1.2',
packages=[
'spiget'
],
url='https://github.com/TechnicalBro/spiget',
license='',
author='Brandon Curtis',
author_email='freebird.brandon@gmail.com',
description='Spiget.org API Interaction',
download_url='https://github.com/TechnicalBro/spiget/tarball/0.1.2',
keywords=['spigotmc', 'spiget', 'minecraft', 'bukkit'],
install_requires=[
"requests==2.9.1"
]
)
if __name__ == "__main__":
main()