-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
32 lines (30 loc) · 1.34 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
import setuptools
import nimporter
with open('README.md') as readme_file:
readme = readme_file.read()
setuptools.setup(
long_description=readme,
long_description_content_type="text/markdown",
name="faster_than_csv",
author="Juan_Carlos.nim",
download_url="https://github.com/juancarlospaco",
author_email="UNKNOWN",
url="https://github.com/juancarlospaco/faster-than-csv",
project_urls={
'Homepage': 'https://nim-lang.org',
'For Python Devs': 'https://github.com/nim-lang/Nim/wiki/Nim-for-Python-Programmers',
'For TypeScript Devs': 'https://github.com/nim-lang/Nim/wiki/Nim-for-TypeScript-Programmers',
'Forum': 'https://nim-lang.org',
'Twitter': 'https://twitter.com/nim_lang',
'Reddit': 'https://reddit.com/r/nim',
'StackOverflow': 'https://stackoverflow.com/questions/tagged/nim-lang',
'Discord': 'https://discord.gg/ezDFDw2',
'Telegram': 'https://t.me/nim_lang',
'Matrix': 'https://matrix.to/#/#freenode_#nim:matrix.org',
'Argentina Chat Spanish': 'https://t.me/NimArgentina',
'Dev Documentation Index': 'https://nim-lang.github.io/Nim/theindex.html',
'Tutorial': 'https://nim-lang.github.io/Nim/tut1.html',
},
platforms=['Linux', 'Windows', 'Darwin'],
package_data={"": ["*.nim", "*.nims", "*.cfg", "*.dll", "*.so", "*.h", "*.hpp"]},
)