-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·43 lines (36 loc) · 868 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
34
35
36
37
38
39
40
41
42
43
# coding=utf-8
from setuptools import setup
import os
appname = "tr"
version = "2.3.1"
try:
with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()
except:
readme = ""
packages = ["tr"]
setup(
name=appname,
version=version,
description=(
'''%s''' % appname
),
author='anycode',
author_email='[email protected]',
maintainer='anycode',
maintainer_email='[email protected]',
packages=packages,
platforms=["linux"],
url='https://pypi.org/project/%s/' % appname,
classifiers=[
'Programming Language :: Python',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries'
],
install_requires=[
"numpy"
],
include_package_data=True,
long_description=readme,
long_description_content_type='text/markdown'
)