-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
45 lines (38 loc) · 1.2 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
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Author: rjayapalan
Created: March 11, 2022
"""
from setuptools import setup
import os
def get_long_desc() -> str:
if not os.path.isfile("README.rst"):
return ""
with open("README.rst") as f:
desc = f.read()
return desc
setup(
name="filesplit",
version="4.1.0",
description="Python module that is capable of splitting files and merging it back.",
long_description=get_long_desc(),
author="Ramprakash Jayapalan",
author_email="ramp16888@gmail.com",
url="https://github.com/ram-jayapalan/filesplit",
keywords="file split, filesplit, split file, splitfile",
classifiers=[
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
],
package_dir={'filesplit': 'src'},
packages=['filesplit', 'filesplit.common'],
python_requires='>=3, <4',
project_urls={
'Bug Reports': 'https://github.com/ram-jayapalan/filesplit/issues',
'Source': 'https://github.com/ram-jayapalan/filesplit',
},
)