-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 974 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
from setuptools import setup, find_packages
from pathlib import Path
# Read the contents of your README file
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='ProjectSystemManager',
version='0.4',
packages=find_packages(),
install_requires=[
'configparser',
], # Add a comma here
author='A. Sharan',
author_email='hemsharan3050@gmail.com',
description='ProjectSystemManager is a Python library designed to manage projects by creating, updating, searching, and fetching project details. It allows you to organize projects in a specified directory and store relevant information such as project name, creation date, technologies used, and a summary.',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
project_urls={
'Source Repository': 'https://github.com/A-Sharan1/ProjectManager/'
}
)