-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (31 loc) · 1014 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
29
30
31
32
33
import codecs
from setuptools import setup, find_packages
with codecs.open('README.md', encoding='utf-8') as f:
long_description = f.read();
setup(
name="exsimple",
version="1.0.3",
license='https://github.com/XenoAmess/EXsimple/blob/master/LICENCE',
description="A public, open, share net-disc.",
author='XenoAmess',
author_email='[email protected]',
url='https://github.com/XenoAmess/EXsimple',
packages=find_packages(),
# package_data={
# 'exsimple': ['README.rst', 'LICENSE']
# },
install_requires=[],
entry_points="""
[console_scripts]
exsimple = exsimple.exsimple:main
""",
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
long_description=long_description,
)