-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 793 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 793 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
from setuptools import setup
with open('./README.rst', encoding='utf-8') as f:
readme = f.read()
setup(
name='linq-t',
version='0.1',
keywords='Linq, type hinting, type inference',
long_description=readme,
packages=['linq', 'linq.core', 'linq.standard'],
package_data={
'linq':[
'core/*.pyi',
]},
url='https://github.com/Xython/Linq.py',
license='MIT',
author='thautwarm',
author_email='twshere@outlook.com',
description='Language Integrated Query for Python',
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython'],
zip_safe=False
)